﻿/* main.css */

.hero {
    background: linear-gradient(135deg, #e8d4ff 0%, #d8c0ff 50%, #c8acff 100%);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(228, 180, 225, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(196, 122, 255, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.hero h2 {
    margin: 0 0 2rem 0;
    font-size: 2.8rem;
    color: #5a3a7a;
    font-weight: 400;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.5);
    position: relative;
    z-index: 1;
}

.btn_continue {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(45deg, #e8b4e1, #c47aff);
    color: #5a3a7a;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(156, 89, 209, 0.3);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.btn_continue::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn_continue:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(156, 89, 209, 0.5);
    color: #3d2a5e;
}

.btn_continue:hover::before {
    left: 100%;
}

.btn_continue:active {
    transform: translateY(-1px);
}

/* Адаптивность */
@media (max-width: 768px) {
    .hero {
        padding: 3rem 1rem;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .btn_continue {
        padding: 10px 25px;
        font-size: 1rem;
    }
}

.centered-text{
    width:100%;
    text-align: center;
}

.inline_text{
    display: inline;
}

.opacity0{
    opacity:0;
}

.text-left{
    text-align: left;
}

@keyframes spin{
    0% {transform: rotate(0deg);}
    100% {transform: rotate(360deg);}
}

.title-decoration {
    height: 3px;
    background: linear-gradient(90deg, transparent, #e8b4e1, #c47aff, transparent);
    width: 150px;
    margin: 0 auto;
    border-radius: 3px;
    margin-bottom: 40px;
}